Documents for PDF, .NET Edition Documentation
StructPredicate<T> Delegate

GrapeCity.Documents.Common Assembly > GrapeCity.Documents.Common Namespace : StructPredicate<T> Delegate
The type of the struct to compare.
The struct to compare against the criteria defined within the method represented by this delegate.
Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.
Syntax
'Declaration
 
Public Delegate Function StructPredicate(Of T As {New, Struct})( _
   ByRef item As T _
) As System.Boolean
public delegate System.bool StructPredicate<T>( 
   ref T item
)
where T: new(), struct

Parameters

item
The struct to compare against the criteria defined within the method represented by this delegate.

Type Parameters

T
The type of the struct to compare.

Return Value

true if item meets the criteria defined within the method represented by this delegate; otherwise, false.
See Also

Reference

StructPredicate<T> Members
GrapeCity.Documents.Common Namespace